home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000216_jgriess@caramail.com_Tue Jun 19 10:48:42 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  71 lines

  1. Article: 12536 of comp.protocols.kermit.misc
  2. From: "jean-luc" <jgriess@caramail.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. References: <9ghrnm$m59$1@front1m.grolier.fr> <9gislq$j3l$1@newsmaster.cc.columbia.edu> <3b2dbe15$1_2@news.datacomm.ch> <9gl0kj$l64$1@newsmaster.cc.columbia.edu>
  5. Subject: Re: must write a soft including Kermit binary file send
  6. Date: Tue, 19 Jun 2001 14:00:05 +0200
  7. Lines: 54
  8. X-Priority: 3
  9. X-MSMail-Priority: Normal
  10. X-Newsreader: Microsoft Outlook Express 5.00.2314.1300
  11. X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300
  12. NNTP-Posting-Host: 212.254.61.134
  13. Message-ID: <3b2f3dae$1_1@news.datacomm.ch>
  14. X-Trace: 19 Jun 2001 13:55:26 +0100, 212.254.61.134
  15. Organization: Customers of Tiscali DataComm AG - http://www.tiscali.ch/
  16. Path: newsmaster.cc.columbia.edu!phl-feed.news.verio.net!iad-peer.news.verio.net!iad-feed.news.verio.net!news.verio.net!carrier.kiev.ua!news.uar.net!news.nask.pl!news.ipartners.pl!news1.ebone.net!news.ebone.net!newsfeeds.belnet.be!news.belnet.be!news2.kpn.net!news.kpn.net!nslave.kpnqwest.net!nmaster.kpnqwest.net!newsfeed.Austria.EU.net!newsfeed.kpnqwest.at!newsmaster-01.atnet.at!atnet.at!news.datacomm.ch
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12536
  18.  
  19. please understand
  20. - The OS-9 stuf is given and working, also if it is a older Kermit version.
  21. - OS-9 is the target where "kermit ri" is waiting for files.
  22.  
  23. I was reading some of your source files, like ckcfn2.c and gkermit.c, so its
  24. a great
  25. help, know about S, F, D-type packets.
  26.  
  27. The receiver OS-9 is waiting for files and send a NACK at regular
  28. intervalls
  29. NACK is 01 23 20 4E 33 0D
  30. where 01 is the start character
  31. where 23 20 is the sequence number
  32. where 4E ist the N for NACK
  33. where 0D is the block end
  34.  
  35. what is the 33 for ?
  36. is this a checksumm ?
  37.  
  38. I have problems with the checksumm calculation.
  39. I use the 1 Byte checksumm, type 1
  40. so its all bytes anded with 177 and summed, add higher bits and anded with
  41. 77
  42. I dont find that result.
  43.  
  44. Can you help ?
  45. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote in message
  46. news:9gl0kj$l64$1@newsmaster.cc.columbia.edu...
  47. > In article <3b2dbe15$1_2@news.datacomm.ch>,
  48. > jean-luc <jgriess@caramail.com> wrote:
  49. > : The receiver Kermit is on a OS-9 system.
  50. > :
  51. > : To automate a test-production system,
  52. > : I must be able to download files to the OS-9 System
  53. > : using a Labview Application.
  54. > :
  55. > : In fact, I need only 5% of Kermits capabilities
  56. > : file transfer 8bit quoting auto-download
  57. > :
  58. > You can either use the Kermit software that is already
  59. > written for OS-9:
  60. >
  61. >   http://www.columbia.edu/kermit/ckermit.html
  62. >
  63. > or you can write a Kermit implementation yourself based
  64. > on the protocol specification.  The hex bytes that you
  65. > quoted are not going to help you understand the protocol;
  66. > they vary according to settings and conditions and
  67. > negotiations.  You either have to read about it or just
  68. > use what is already available.
  69. >
  70. > - Frank
  71.